/*.product-sucess-sec {padding-top: 56px;background-color: #000;}*/
.logo-section,
.vgm-b-create-block-vgm-25-faq,
.vgm-b-create-block-vgm-25-vgm-processsteps {
    background: #31763b;
    border-bottom: 1px solid #26282E;
}
.hero-container {
    display: grid;
}
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.hero-header {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.hero-kicker {
    font-size: 14px;
    font-weight: 300;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase
}
.hero-heading {
    font-size: 72px;
    font-weight: 700;
    line-height: 80px;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 25px
}
.hero-description {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.text-body {
    font-size: 18px;
    line-height: 28px;
    color: #ccc
}

.action_button,
.button {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    gap: 8px;
    transition: color .3s
}

/* .action_button:hover,
.btn-action:hover,
.btn-primary:hover,
.button:hover {
    color: #6f47d4;
    text-decoration: none
} */

.action_button--large,
.action_button--primary,
.button--primary {
    color: #fff;
    border-radius: 4px;
    text-decoration: none
}

.action_button:hover svg,
.button:hover svg {
    transform: scale(1.2);
    fill: #fff;
    animation: 1s ease-in-out infinite bounce
}

.btn-primary:hover .btn-arrow,
.button:hover .button-arrow .arrow {
    color: #fff;
    overflow: hidden;
    text-decoration: none
}

.btn-primary:hover .btn-arrow svg,
.button:hover .button-arrow svg .arrow svg {
    transform: translateX(6px)
}

.arrow,
.btn-arrow,
.button-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    color: #6ecc7b;
    border-radius: 50%;
    border: 1px solid #6ecc7b;
    padding: 6px;
    cursor: pointer;
    transition: color .3s, transform .3s;
    overflow: hidden
}

.arrow svg,
.btn-arrow svg,
.button-arrow svg {
    width: 18px;
    height: 18px;
    fill: #6ecc7b;
    transition: transform .3s, fill .3s
}
.hero-image {
    margin-top: 80px;
    text-align: center;
    display: inline-flex;
}
.hero-image picture {
    display: inline-flex;
}
.hero-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}
.marquee-logos {display: grid;}
:root {
  --marquee-width: 100%;
  --marquee-height: 100px;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 7;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  width: var(--marquee-width);
  height: auto;
/*  background-color: #111;*/
  color: #eee;
  overflow: hidden;
  position: relative;
  padding: 50px 0px;
}
.marquee:before, .marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}
.marquee:before {
  left: 0;
  background: linear-gradient(to right, #111 0%, transparent 100%);
}
.marquee:after {
  right: 0;
  background: linear-gradient(to left, #111 0%, transparent 100%);
}
.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}
/* .marquee-content:hover {
  animation-play-state: paused;
} */
@keyframes scrolling {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
  white-space: nowrap;
/*  min-height: 100px;*/
    margin-right: 10px;
}

.marquee-content li img {
  width: 100%;
  height: auto; 
  border: 2px solid #eee;
}
.action-button svg {
    animation-duration: 1s;
    width: 20px;
    height: 20px;
}

.action-button:hover svg {
    animation-name: arrowAnim;
    animation-iteration-count: infinite;
}
@keyframes arrowAnim {
   0% {
    transform: translate(0, 0);
   }
   50% {
    transform: translate(100%, -100%);
   }
   51% {
    transform: translate(-100%, 100%);
   }
   100% {
    transform: translate(0, 0);
   }
}
.our-top-products {padding: 50px 0;}
.products-flex {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.single-product {
    width: calc(50% - 10px);
    display: inline-flex;
}
.single-product a {display: grid;width: 100%;}
.single-product a figure {width: 100%;display: grid;}
.single-product a figure img {width: 100%;}
.vgm-pro-list { display: flex; justify-content: space-between;  gap: 20px; flex-wrap: wrap;padding-top: 100px;}
.project-card {flex: 1 1 calc(33.333% - 20px);box-sizing: border-box;text-align: left; position: relative;}
.image-wrapper {position: relative;overflow: hidden;}
.project-image { width: 100%; height: auto; display: block; transition: transform .3s}
.image-wrapper:hover .project-image {transform: scale(1.05)}
.image-overlay {position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: #000;display: flex;align-items: center;justify-content: center;opacity: 0;transition: opacity .3s}
.image-wrapper:hover .image-overlay {opacity: 1}
.icon-arrow svg,.overlay-link {color: #fff;font-size: 18px;font-weight: 700; text-decoration: none}
.project-details {margin-top: 10px;transition: text-decoration .3s}
.view-all-vgm-pro-link { display: inline-flex; align-items: center; color: #6ecc7b; font-weight: 700;  font-size: 16px;   text-decoration: none;  gap: 5px;  transition: color .3s; margin-top: 30px}
.cta-button,.cta_button {text-decoration: none;transition: background-color .3s}
.view-all-vgm-pro-link:hover {color: #4a0072}
.project-description:hover,.project-title:hover {cursor: pointer}
.project-details .project-title,.project-details .project-description {color: #FFF;}
.project-card:hover .project-description, .project-card:hover .project-title, .project-description:hover, .project-title:hover {
    text-decoration-color: #6ecc7b;
    text-decoration-thickness: 2px;
    text-decoration: underline;
}
@media (max-width: 600px) {
  html { font-size: 12px; }
  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }
  .marquee:before, .marquee:after { width: 5rem; }
}
.services-page-secs {background-color: #000000;}
.services-page-secs .breadcrumb-divider svg,.services-page-secs .breadcrumb-divider svg rect {fill: #fff}
.services-page-secs .service-head {align-items: center;}
.services-page-secs .left-service h1 {color: #fff;}
.our-section-servives {padding: 50px 0px; }
.right-details p {color: #fff;}
.services-listing-item {
    position: sticky;
    top: 0;
    padding: 100px 0;
    border-top: 1px solid #26282e;
    background: #000000;
}
.main-services-listing-item {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.left-service-cont {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 33%;
}
.main-services-listing-item .left-service-cont .service-count {color: #fff}
.left-service-cont h3 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.left-service-cont p {
    color: #a3a6ad;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 40px;
}
.right-services-cont {
    width: 45%;
    max-width: 515px;
}
.right-services-cont a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 16px;
    transition: 300ms;
    color: #ffffff;
    border-bottom: 1px solid #262824;
    gap: 24px;
}
.right-services-cont a img {width: 60px;}
.right-services-cont a h4 {
    font-size: 18px;
    line-height: 28px;
}
.right-services-cont a svg {
    margin-left: auto;
    transition: 300s;
}
/* product slider */


.ProductSwiper .swiper-slide {
     height: 85vh;
     min-width: 200px;
     width: 100%;
/*     margin: 0 10px;*/
     background: transparent;
     position: relative;
     overflow: hidden;
}
/*.ProductSwiper .swiper-slide:first-child {
     margin-left: 10px;
}
*/.ProductSwiper .swiper-slide img {
  width: 100%;
  transform: scale(1.0);
  transition: 600ms;
  object-fit: cover;
}
.ProductSwiper .swiper-slide img h3:after {
     content: "";
     height: 3px;
     width: 0;
     background: #fff;
     left: 50%;
     transform: translateX(-50%);
     bottom: 0;
     transition: 0.5s all ease;
     position: relative;
}
.ProductSwiper .swiper-slide img p {
     font-weight: 300;
}
.see-projects-slide {
   display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.portfolio-more {
   display: flex;
    position: absolute;
    top: 0px;
    padding: 24px;
    width: 100%;
    align-items: center;
}
.domian-tags ul {
   display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 4px;
}
.domian-tags ul li a {
   display: block !important;
    padding: 5px 12px !important;
    text-decoration: none !important;
    border: 1px solid #FFF !important;
    border-radius: 100px !important;
}

.justify-space-btw portfolio-more .domian-tags ul li a{
   display: block !important;
   padding: 5px 12px !important;
   text-decoration: none !important;
   border: 1px solid #FFF !important;
   border-radius: 100px !important;
}
.domain-tags {
    width: calc(100% - 50px);
    overflow-x: auto;
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer & Edge */
}
.domain-tags::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}
.domain-tags ul {
   display: flex; /* Makes list items align in a row */
   gap: 10px; /* Adds space between items */
   padding: 0;
   margin: 0;
   list-style: none;
}

.domain-tags ul li {
   display: inline-block;
   
}
.domain-tags ul li a {
   border: 1px solid white;
   border-radius: 100px;
   padding: 5px 12px;
   display: flex;
   white-space: nowrap;
}

.domian-arrow .action-button .arrow {border-color: #FFF;}
.domian-tags ul li a:hover {background-color: rgba(255, 255, 255, .1);}
.case-study-card-info {
   position: absolute;
    z-index: 1;
    bottom: 0px;
    width: 100%;
    padding: 24px;
    transition: 600ms;
    transform: translateY(calc(50% - 17px));
    background: rgba(15, 16, 20, .2);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
}
.ProductSwiper .swiper-slide .case-study-card-info img {
   width: 25px;
   height: 25px;
   margin-bottom: 22px;
}
.case-study-card-info h3 {
   font-size: 28px;
    line-height: 34px;
    margin-bottom: 8px;
}
.case-study-card-info p {
   font-size: 16px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 44px;
}
.case-study-numbers {
/*   display: grid;*/
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .4);
    /*grid-template-columns: repeat(3, 1fr);
    gap: 8px;*/
}
.ProductSwiper .swiper-slide .full-card-cont img {
    width: 100%;
    transform: scale(1.0);
    transition: 600ms;
    object-fit: cover;
}
.ProductSwiper .swiper-slide:hover img {
   transform: scale(1.2);
   transition: 600ms;
}
.ProductSwiper .swiper-slide:hover .case-study-card-info {transform: translateY(0)}
.case-study-numbers .mq20-heading-8 {
   font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.controls-swiper {
   width: 100%;
   display: flex;
   justify-content: space-between;
   margin-top: 24px;
}
.progress-bar {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    left: 10px;
    color: #181a1f;
    justify-content: left;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}
.control-btns {position: relative;display: flex;flex-direction: row-reverse;}
.counter-progress {
    position: relative;
    width: 120px;
    height: 1px;
    background: #d0d2d6;
}
.counter-progress .counter-progress-active {
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    background: #31763b;
}
.controls-swiper {
   width: 100%;
   display: flex;
   justify-content: space-between;
   margin-top: 24px;
}
.ProductSwiper .swiper-button-prev {
   position: relative;
    left: auto;
    margin-right: 20px;
}
.ProductSwiper .swiper-button-next {
   right: 0px;
    position: relative;
}
.ProductSwiper .swiper-button-next:after,.ProductSwiper .swiper-button-prev:after {
   content: "";
    display: inline-block;
    width: 20px;
    height: 20px;    
    background-size: cover;
}
.ProductSwiper .swiper-button-next:after {
   background-image: url(../images/left-arrow.png);
   transform: rotate(180deg);
   filter: invert(1);
}
.ProductSwiper .swiper-button-prev:after {
   background-image: url(../images/left-arrow.png);
   filter: invert(1);
}
.service-head {
   display: flex;
   width: 100%;
   justify-content: space-between;
   margin-bottom: 80px;;
}
.left-service {
   display: flex;
   flex-direction: column;
   gap: 24px;
}
.left-service h2, .left-service h1 {
   font-size: 60px;
   font-weight: 600;
   line-height: 66px;
}
.left-service p {
   font-size: 18px;
   line-height: 28px;
   color: #a3a6ad;
}
.right-more .action-button {font-weight: 600;}
.ProductSwiper .controls-swiper {display: none;}
.technology-sec {background-color: #000000;}
.top-prod-head {
    padding: 100px 0;
    border-bottom: 1px solid #26282e;
}
.prod-soft-cont {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.prod-soft-cont h2 {
    max-width: 725px;
    font-size: 72px;
    color: #fff;
    line-height: 80px;
}
.prod-soft-cont p {
    max-width: 410px;
    color: #a3a6ad;
    place-self: flex-end;
    font-size: 18px;
    line-height: 28px;
}
.industries-list-item .left-service h2 {color: #fff}
.industries-list-item .right-more {
    justify-content: center;
    display: flex;
    align-items: flex-end;
}
.industries-list-item {
    color: #fff;
    padding: 100px 0px;
}
.vgm-b-create-block-vgm-25-cta-simple {
    padding: 100px 0;
    color: #fff;
    background-color: #31763b;
    border-top: 1px solid rgb(38, 40, 46);
}
.vgm-b-create-block-vgm-25-cta-simple .vgm-25-wrapper {
    position: relative;
}
.vgm-b-create-block-vgm-25-cta-simple .cta-header-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    max-width: 720px;
    gap: 24px;
    text-align: left;
}
.vgm-b-create-block-vgm-25-cta-simple .cta-header-content>div {
    display: flex;
    flex-direction: column;
}
.vgm-b-create-block-vgm-25-cta-simple .cta-header-content>div .subheading-1 {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 6px;
}
.pulse, .pulse-1 {
    width: 10px;
    height: 10px;
    background-color: #32cd32;
    border-radius: 50%;
    margin-right: 5px;
    animation: 1.5s infinite pulse;
}
@keyframes pulse {
    0%,100% { transform: scale(1); opacity: 1}
    50% {transform: scale(1.5);opacity: .5}
}
.vgm-b-create-block-vgm-25-cta-simple .cta-header-content>div .subheading-1 .pulse-1 {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    text-align: left;
}
.vgm-b-create-block-vgm-25-cta-simple .cta-header-content p {
    max-width: 520px;
}
.vgm-25-heading-1 {
    font-size: 80px;
    line-height: 88px;
    font-weight: 500;
}
.vgm-25-body-11 {
    color: #000;
    text-align: left;
    padding-top: 30px;
}
.vgm-b-create-block-vgm-25-cta-simple .cta-header-content p {
    max-width: 520px;
}
.cta_button, .cta_button-1 {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color .3s;
    text-decoration: none;
    color: #000;
    background-color: #fff;
}
.vgm-b-create-block-vgm-25-cta-simple .cta-arrow {
    position: absolute;
    top: 0;
    right: 0;
}
@media (max-width: 768px) {
.ProductSwiper .controls-swiper {display: flex;}
.ProductSwiper .controls-swiper .progress-bar {visibility: hidden;}
.hero-content,.service-head {flex-wrap: wrap;}
.hero-header,.hero-description {flex: 0 0 100%;}
.marquee-content {gap: 10px;}
.main-services-listing-item {flex-direction: column;}
.prod-soft-cont h2 {font-size: 34px;line-height: 45px;}
.count-div {color: #fff;}
.vgm-25-heading-1 {
    font-size: 60px;
    line-height: 68px;
}
.left-service-cont,.right-services-cont {width: 100%;}
.top-prod-head, .industries-list-item {
    padding: 50px 0;
}
.left-service h2, .left-service h1 {
    font-size: 34px;
    line-height: 40px;
}
.products-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.single-product {width: 100%;}
.left-service {margin-bottom: 10px;}
.cta-arrow svg {
    width: 50px;
    height: 50px;
}
.ProductSwiper .swiper-slide {
    height: auto;
}
.marquee:after,.marquee:before {display: none;}
.hero-heading {
    font-size: 40px;
    line-height: 55px;
}
.left-service-cont h3 {font-size: 28px;line-height: 34px;}
.prod-soft-cont {gap: 40px;}
.vgm-pro-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: scroll;
}
.project-card, .value {
    flex: 0 0 80%;
}
}